/*PAGINA TURNOS*/

/*a)turnos-medico*/
.turnos-medico{
/*  background-image: url(/imagen/dra2sinfondo.png);*/
  background-position:120% 50% ;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #d1d1c775;
}

@media (max-width: 767px) {
  .turnos-medico {
    background-image: none; /* Quita la imagen de fondo */
  }
}

/*Texto turnos*/
.texto-turnos{
  padding-top: 18px;
  padding-bottom: 15px;
  padding-left: auto;
  margin-left: auto;
  margin-right: auto;
}

.huno-turno{
  font-family: Nunito;
  color:#21a389 ;
  text-shadow: 2px 2px 4px #0a0a0a33 ;
  text-align: center;
}

.lista-medico{
  font-family: Nunito;
  margin: 28px;
  color: rgb(45, 44, 44);
  font-size: 22px;
  opacity: 1;
}

.negrita{
  font-weight: 600;
}

.chico p{
  margin: 0;
  font-size: 18px;
}

/*b)Sacar turno*/
.sacar-turnos {
  position: relative;
}

.sacar-turnos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px; /* Ajusta el grosor de la línea */
  background-color: rgba(211, 218, 211, 0.452);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Crea la sombra */
}

.lineasup{
  text-shadow: 2px 2px 4px #00000033 ;
  color: #16B79A;
  font-size: 23px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
  font-family: Nunito;
  display: flex;
  flex-direction: column;
  justify-content:center;
  align-items: center;
}

.sacar-turnos{
  background-image: url(/imagen/papelviejo.jpg);
  background-position: center;
  background-size: cover;
}

.huno-turnos{
  font-family: Nunito;
  color:black ;
  text-shadow: 2px 2px 4px #00000033 ;
  text-align: center;
}

.titulo-turno{
  font-family: Nunito;
  color:black ;
  text-shadow: 2px 2px 4px #00000033 ;
}  

.form-turno{
  font-size: 20px;
  color: rgb(87, 80, 80);
  text-align: center;
}

h3{
  font-family: Nunito;
  font-size: 20px;
  color: rgb(87, 80, 80);
  text-align: center;
}

.letra-roja{
  color: #de3434;
  font-size: 30px;
  padding: 10px;
}

.titila {
  animation: titileo 1s infinite alternate;
}

@keyframes titileo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

#form input{
  margin-top: 10px;
}

.letra-gris{
  color: grey;
  font-size: 20px;
}

.letra-gris:hover{
  color: rgb(179, 170, 170);
  text-decoration: none;  
}

.btn-turnos{
  border: 1px solid #16B79A;
  border-radius: 30px ;
  border-color: #16B79A;
  background-color: #16B79A;
  color:white ;
  font-size: large;
  padding: 12px;
  text-decoration: none;
}

.btn-turnos:hover{
  background-color:#36c7ad ;
  border-radius: #669e94;
  color:white;
}

/*boton atras*/
.image-container {
  position: relative; /* Establece un punto de referencia para el posicionamiento absoluto.El contenedor es el punto de referencia */
}

.back-link {
  position: relative;/* Posiciona el enlace absolutamente dentro del contenedor */
  bottom: 20px;/* Ajusta la distancia desde el borde inferior */
  left: 20px;/* Ajusta la distancia desde el borde derecho */
  text-decoration: none; /* Elimina el subrayado del enlace */
  color: #fff; /* Color del texto */
  background-color: #414444; /* Color de fondo del enlace */
  padding: 10px;
  border-radius: 30px; /* Bordes redondeados */
  margin-top: 18px;
}
.back-link:hover {
  color: blanchedalmond; /* Cambia el color del texto */
}
